home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / C for beginners.adf / source / string.c < prev    next >
C/C++ Source or Header  |  1978-01-17  |  177b  |  19 lines

  1. /* string.c17*/
  2. strlen(string)
  3. char string[];
  4. {
  5.    int i = 0;
  6.    while(string[i])
  7.    i++;
  8.    return(i);
  9. }
  10.  
  11.  
  12. strcopy(from,to)
  13. char *from,*to;
  14. {
  15.    while(*from++ = *to++)
  16.    ;
  17. }
  18.  
  19.